home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / Webstrijd / CoffeeHTML / CoffeeHTML95.exe / %MAINDIR% / Snippets / Use fonts in style sheet.snp < prev    next >
Encoding:
Text File  |  2003-05-27  |  923 b   |  50 lines

  1. <!-- A style sheet example of how to control your
  2. pages by SETTING what things will do for the
  3. whole page at once. You can put as many of these
  4. attributes for any FONT in the HEAD tag. Then
  5. text will appear as what you have set it for 
  6. all the time through out your page, IE 3.0+ -->
  7.  
  8.  
  9. <HTML>
  10. <HEAD>
  11.  
  12. <TITLE>This is a Style Sheet</TITLE>
  13.  
  14. <STYLE>
  15. <!--
  16.  
  17. BODY { color : #FFFFFF;
  18. font-size : 16pt;
  19. font-family : Comic Sans MS}
  20.  
  21. P { color : #004080;
  22. font-weight: medium;
  23. font-style : normal;
  24. font-size : 30pt;
  25. font-family : Courier New,Arial}
  26.  
  27. H1 { color : #FF0000;
  28. font-weight: bold;
  29. font-size : 18pt;
  30. font-family : Arial}
  31.  
  32. H2 { color : #008000;
  33. font-weight: medium;
  34. font-style : normal;
  35. font-size : 100pt;
  36. font-family : Arial}
  37.  
  38.  
  39. -->
  40. </STYLE>
  41. </HEAD>
  42.  
  43. <BODY>
  44.  
  45. <CENTER><P>Hello there how are you ?</P>
  46. <H1> I am fine, and you ?</H1>
  47. Pretty cool huh ?
  48. <H2> Yeah !</H2></CENTER>
  49.  
  50.